home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005 / CHIP Utilities 2005.iso / boot / menus / mboard.scn < prev    next >
Encoding:
Text File  |  2005-01-19  |  3.7 KB  |  68 lines

  1. #
  2. # Mainboard Tools
  3. #
  4. mainboard_menu:
  5. set textColor = color[white on black]
  6. clear
  7. set textColor = color[yellow on blue]
  8. print "                            ULTIMATE BOOT CD VER 3.2                            "
  9. print "                         http://www.ultimatebootcd.com/                         "
  10. print "                                                                                "
  11. set textColor = color[white on red]
  12. print "                             [Mainboard Tools 1/2]                              "
  13. set textColor = color[white on cyan]
  14. print "                                                                                "
  15. set textColor = color[yellow on cyan]
  16. print " System Burn-In Test                                                            "
  17. set textColor = color[white on cyan]
  18. print " [F1] Lucifer V1.0                                                              "
  19. print "                                                                                "
  20. set textColor = color[yellow on cyan]
  21. print " CPU Test                                                                       "
  22. set textColor = color[white on cyan]
  23. print " [F2] CPU Burn-in V1.00                 [F3] Mersenne Prime Test V23.5.2        "
  24. print "                                                                                "
  25. set textColor = color[yellow on cyan]
  26. print " Memory Test                                                                    "
  27. set textColor = color[white on cyan]
  28. print " [F4] Memtest86 V3.2                    [F7] DocMem RAM Diagnostic V1.45a       "
  29. print " [F5] Memtest86+ V1.40                  [F8] DocMem RAM Diagnostic V2.1b        "
  30. print " [F6] Windows Memory Diagnostic         [F9] ctramtest V5.1                     "
  31. print "  [1] TestMem4                                                                  "
  32. print "                                                                                "
  33. set textColor = color[yellow on cyan]
  34. print " Peripherals Test                                                               "
  35. set textColor = color[white on cyan]
  36. print "  [2] Parallel V1.45                     [3] ATAPI CDROM Identification V2.03   "
  37. print "                                                                                "
  38. print "                                                                                "
  39. set textColor = color[blue on cyan]
  40. print " >>> Press [Space] for more mainboard tools ...                                 "
  41. set textColor = color[white on cyan]
  42. print "                                                                                "
  43. set textColor = color[white on blue]
  44. print "             Please select an item (ESC to return to previous menu)             "
  45. set textColor = color[white on black]
  46.  
  47. #
  48. # Actions
  49. #
  50. getkey 500 script boothdd0.scn
  51. clear
  52. if ($lastKey == key[f1]); then bcdw \images\freedos.img \dosapps\lucifer\startup.bat
  53. if ($lastKey == key[f2]); then memdisk \images\cpuburn.igz
  54. if ($lastKey == key[f3]); then memdisk \images\mprime.igz
  55. if ($lastKey == key[f4]); then memdisk \images\memtest.igz
  56. if ($lastKey == key[f5]); then memdisk \images\memtestp.igz
  57. if ($lastKey == key[f6]); then diskemu \images\windiag.img
  58. if ($lastKey == key[f7]); then diskemu \images\docmem1.img
  59. if ($lastKey == key[f8]); then diskemu \images\docmem2.img
  60. if ($lastKey == key[f9]); then bcdw \images\freedos.img \dosapps\ctram\startup.bat
  61. if ($lastKey == key[1]); then diskemu \images\tm4.img
  62. if ($lastKey == key[2]); then bcdw \images\freedos.img \dosapps\parallel\startup.bat
  63. if ($lastKey == key[3]); then bcdw \images\freedos.img \dosapps\atapicd\startup.bat
  64. if ($lastKey == key[space]); then script mboard2.scn
  65. if ($lastKey == key[esc]); then script main.scn
  66. goto mainboard_menu
  67.  
  68.